home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #15 / Monster Media Number 15 (Monster Media)(July 1996).ISO / internet / eudor154.zip / COMMON.Z / DEFAULT.NAV < prev    next >
Text File  |  1995-12-14  |  4KB  |  119 lines

  1. ;Default (must modify)
  2. ;
  3. ; If you make a change to this file you should change the name (line above)
  4. ; and copy it into the scripts directory (in case you change scripts).
  5. ;
  6. ; Below is a generic navigation script.  More than likely it will not work
  7. ;  For your specific installation.  
  8.  
  9. cancelon ^ERROR^NO CARRIER^NO DIALTONE^BUSY^
  10. send ATDT {DialNumber}\r
  11. waitfor CONNECTED
  12. waitfor ogin:
  13. send {DialLogin}\r
  14. waitfor ssword:
  15. send {DialPass}\r
  16. waitfor $
  17. ; If you are dialing into a Unix system you should run srialpop.  Srialpop
  18. ;  creates an echoless telnet session which is required by Eudora.  Annex
  19. ;  terminal server require the following telnet command:
  20. ;     stty -echo\ntelnet -r {System} {Port}
  21. ;
  22. ;  Cisco terminal servers use the following command:
  23. ;     telnet {System} {Port} /stream
  24. ;  
  25. ;  Eudora must have an echoless telnet session in order to operate properly.
  26. ;
  27. ; exec srialpop
  28. ; waitfor %
  29. ;
  30. ;  HOW TO CREATE A DIALIN SCRIPT
  31. ;
  32. ;    This dialup file is responsible for dialing the phone number (via
  33. ;   the {DialNumber} variable) and navigating to the system prompt of your
  34. ;   system/terminal server.  Contact your Internet service provider or
  35. ;   system administrator and ask if they have a navigation script that
  36. ;   works with Eudora.  If not, it will be necessary to edit this file
  37. ;   file to match the login requirements of your particular Internet
  38. ;   service provider.
  39. ;
  40. ;    Note:    Prior to editing the default SERIAL.NAV file you will need
  41. ;        to be familiar with all of the available commands and
  42. ;        variables.  These are defined in the Dialup File Command
  43. ;        Lines section of this appendix.
  44. ;
  45. ;    This file contains a generic dialup script.  Prior to editing this
  46. ;   script, you will need to know the navigation sequence for getting to
  47. ;   your host/terminal server system prompt.  You can accomplish this by
  48. ;   dialing into the host system using a standard terminal program that
  49. ;   saves your login session, such as the one that comes with Windows
  50. ;   (Terminal).  This will tell you what prompts to expect from the system
  51. ;   and what commands to send it.  Using the commands and variables at your
  52. ;   disposal, edit the navigation sequence accordingly.
  53. ;
  54. ;    Note:    An example dialup session and the resulting navigation
  55. ;        sequence are provided at the end of this file.
  56. ;
  57. ;
  58. ;   When using the waitfor command you want to grab the last possible unique
  59. ;   target.  This will enable the send command to be more effective.  There
  60. ;   are no wild cards in the waitfor commands.  You may wish to waitfor both
  61. ;   parts of the prompt.  eg:
  62. ;
  63. ;       system-prompt8:
  64. ;
  65. ;       waitfor system-prompt
  66. ;       waitfor :
  67. ;
  68. ;   This will grab both the first part of the system prompt, and the port
  69. ;   number, which may not be the same for each login.
  70. ;
  71. ;   You may also set some Dialup INI variables in this script.  We recommend
  72. ;   that you set the TelnetCommand and the CRLFProcessing variables here.
  73. ;
  74. ;   An example dialin session and script file follow.
  75. ;
  76. ; --------------------------------------------
  77. ;       Terminal capture of an Annex session
  78. ;AT
  79. ;OK
  80. ;ATDT 95508350
  81. ;CARRIER 1200
  82. ;
  83. ;PROTOCOL: LAP-M
  84. ;
  85. ;COMPRESSION: V.42BIS
  86. ;
  87. ;CONNECT 1200/ARQ
  88. ;
  89. ;
  90. ;Annex Command Line Interpreter   *   Copyright 1991 Xylogics, Inc.
  91. ;
  92. ;Checking authorization, Please wait...
  93. ;Annex username: mark
  94. ;Annex password:
  95. ;
  96. ;Permission granted
  97. ;
  98. ;        This dialup is for Authorized users only.
  99. ;
  100. ;sddc-annex 2:
  101. ;
  102. ; -------------------------------------------------
  103. ;       This is the nav file for the above session
  104. ;
  105. ;set TelnetCommand=stty -echo\ntelnet -r \{System} \{Port}\r\n
  106. ;set CRLFProcessing=1
  107. ;
  108. ;send ATDT {DialNumber}\r
  109. ;waitfor CONNECT
  110. ;waitfor Annex
  111. ;send \r
  112. ;waitfor name:
  113. ;send {DialName}\r
  114. ;waitfor word:
  115. ;send {DialPass}\r
  116. ;waitfor sddc-annex
  117. ;waitfor :
  118. ;
  119.